58cf5ddf0dd14c78e17daf1002f03e498b64d677,src/main/java/org/rakam/server/http/SwaggerReader.java,SwaggerReader,read,#Class#String#boolean#List#,118
Before Change
if(!apiOperation.consumes().isEmpty()) {
operation.consumes(apiOperation.consumes());
} else {
operation.consumes("application/json");
}
Produces produces = method.getAnnotation(Produces.class);
After Change
continue;
}
operation.consumes("application/json");
Produces produces = method.getAnnotation(Produces.class);
if (produces != null) {